home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / fsstat / RCS / ClientsCurrent,v < prev    next >
Encoding:
Text File  |  1988-12-06  |  577 b   |  36 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @# @;
  7.  
  8.  
  9. 1.1
  10. date     88.12.06.09.57.26;  author douglis;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @script to generate summary information for the current runs of each sprite
  17. client (rather than across previous boots).
  18. @
  19.  
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @#!/bin/csh -f
  28. set fileList = ()
  29. foreach host (paprika murder fenugreek thyme sage mace)
  30.     if (-e /sprite/admin/fsstats/$host/last) then
  31.     set fileList = ($fileList  /sprite/admin/fsstats/$host/last)
  32.     endif
  33. end
  34. awk -f fsstats.awk $fileList
  35. @
  36.